home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ Startup Ex 1.xpl
< prev
next >
Wrap
Text File
|
2001-04-12
|
1KB
|
46 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\10) AutoExec.bat"
"NAME"="Execute AutoExec.bat"
"VERSION"="1.55"
"OSVERSION"="0101011"
"LANGUAGE"="VBScript"
"TEXT 1"="Execute AutoExec.bat"
"DESCRIPTION 1"="Activate "Execute AutoExec.bat" if this file should be executed on startup."
"DESCRIPTION 2"="Note: AUTOEXEC.NT and CONFIG.NT are always executed!"
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
sP="HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\"
sv1="ParseAutoexec" 'string
Sub Plugin_Initialize
if regpathexists(sp) then
i=RegReadValue(sp&sv1)
if i=1 then SetUIElement 1,true
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sp & sv1,"1",1)
else
Call RegWriteValue(sp & sv1,"0",1)
end if
End Sub
Sub Plugin_Terminate
End Sub